updateStatus
updateStatus
Path Parameters
appt_reminder_uuid string required
appt_reminder_uuid
Header Parameters
authorization string required
authorization
application/json
Request Body required
request
dealerDepartmentUuidList string[]
remarks string
requesterUserUuid string
status string
Possible values: [TEXT_SENT
, TEXT_FAILED
, EMAIL_SENT
, EMAIL_FAILED
]
Responses
- 200
- 201
- 401
- 403
- 404
OK
application/json
Schema
Example (from schema)
Schema
error object
statusCode int32
warnings object[]
{
"error": {
"code": "string",
"description": "string",
"metadata": {}
},
"statusCode": 0,
"warnings": [
{
"code": "string",
"description": "string"
}
]
}
Created
Unauthorized
Forbidden
Not Found
PUT /appointment-reminder/:appt_reminder_uuid/status
Request
Request
curl / cURL
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
python / requests
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
go / native
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
nodejs / axios
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
ruby / Net::HTTP
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
csharp / RestSharp
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
php / cURL
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
java / OkHttp
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'
powershell / RestMethod
curl -L -X PUT '//api.mykaarma.com/mobile-service/appointment-reminder/:appt_reminder_uuid/status' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"remarks": "string",
"requesterUserUuid": "string",
"status": "TEXT_SENT"
}'